home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / video / simpleVideo / examples / Makefile next >
Encoding:
Makefile  |  1994-08-02  |  543 b   |  22 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS = svtest1 svtest3 svtest4 svtest5 \
  6.       svtest6 svtest7 svtest8 svtest9 svtest10
  7. CFILES    = svtest1.c svtest3.c svtest4.c svtest5.c svtest6.c svtest7.c \
  8.     svtest8.c svtest9.c svtest10.c
  9. LCINCS    = -I../include
  10. LCOPTS    = -g -fullwarn -wlint -woff 813,826,852
  11. LLDLIBS    = ../lib/libsv.a -lvl -lgl -ldmedia -limage
  12.  
  13. default all: $(TARGETS)
  14.  
  15. include $(COMMONRULES)
  16.  
  17. $(TARGETS): $(OBJECTS)
  18.     $(CCF) -o $@ $@.o $(LDFLAGS)
  19.  
  20. #clean:
  21. #    rm -rf *.o *.a *~ core vidtomem $(TARGETS) test00* *.rgb *.yuv
  22.